home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Technology Seed / ADC Seed CD - July 1999.toast / Carbon SDK 1.0d10c3 / Sample Code / AppearanceSample / ProgressPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-01  |  786 b   |  47 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        ProgressPane.h
  3.  
  4.     Contains:    Demonstration of different progress indicators
  5.  
  6.     Version:    Appearance 1.0 SDK
  7.  
  8.     Copyright:    © 1997 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                Edward Voas
  13.  
  14.         Other Contact:        7 of 9, Borg Collective
  15.  
  16.         Technology:            OS Technologies Group
  17.  
  18.     Writers:
  19.  
  20.         (edv)    Ed Voas
  21.  
  22.     Change History (most recent first):
  23.  
  24.          <2>     9/25/97    edv        Get rid of movie stuff for now.
  25.          <1>     9/11/97    edv        First checked in.
  26. */
  27.  
  28. #pragma once
  29.  
  30. #include "MegaPane.h"
  31.  
  32. class ProgressPane : public MegaPane
  33. {
  34.     public:
  35.             ProgressPane( DialogPtr dialog, SInt16 items );
  36.         virtual ~ProgressPane();
  37.         
  38.         virtual void        Idle();
  39.     
  40.     private:
  41.         SInt16                fProgressValue;
  42.         Boolean                fIsAscending;
  43.         ControlHandle        fProgress1;
  44.         ControlHandle        fProgress2;
  45. };
  46.  
  47.